home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000034_news@columbia.edu _Sun Mar 18 12:51:33 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by uhaligani.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id MAA12496
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Sun, 18 Mar 2001 12:51:33 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id MAA06129
  7.     for kermit.misc@watsun.cc.columbia.edu; Sun, 18 Mar 2001 12:47:39 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@columbia.edu (Frank da Cruz)
  10. Subject: Re: Kermit Protocol basic questions
  11. Date: 18 Mar 2001 17:47:37 GMT
  12. Organization: Columbia University
  13. Message-ID: <992sbp$5ve$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <3ab4edcb$1@news.iprimus.com.au>,
  17. --abc-- <ima_devo@hotmail.com> wrote:
  18. : I am currently doing a comparison of the Kermit and FTP protocols and have
  19. : some questions:
  20. : 1) Does Kermits use of a single multiplexed channel have implications for
  21. : simultaneous transfer of commands while data transfer is in progress? (ie.
  22. : In FTP there is the 2 channels available)
  23. Kermit's scheme is simpler.  Packets are used at the application level,
  24. which include function-code fields ("commands").  In other words, each message
  25. includes a command, and possibly also contents (e.g. file name, file
  26. attributes, file data).  The fact that there is only a single connection
  27. removes all the difficulties with firewalls, active-vs-passive mode, etc.
  28.  
  29. : 2) Is the error recovery/Restart functionality available regardless of the
  30. : mode of transfer? (In FTP crash recovery not avaialble using stream mode).
  31. Recovery/restart is available only for binary-mode transfers.  A scheme was
  32. worked out for text mode, but it's quite complex given the fact that it would
  33. have to work with every known file system and record format, including
  34. record-oriented file systems as on IBM mainframes.  So far it has not been
  35. implemented, since there is little demand for it.
  36.  
  37. : 3) When using FTP, user may set up a connection between 2 other
  38. : servers/machines, and use the users host to control the session. Is this
  39. : capability available in Kermit?
  40. No.
  41.  
  42. : Also, if u feel OK about some offtopic FTP questions :)  :
  43. : 1)  Does FTP encrypt the login info for start of session, or are plain text
  44. : passwords sent? Or does the TELNET client encrypt the login info?
  45. Security is an option for FTP, Telnet, and Kermit.  Secure servers and
  46. clients are available for all three:
  47.  
  48.   http://www.columbia.edu/kermit/telnetd.html
  49.  
  50. Incidentally, there are a lots of other axes along which you can compare
  51. FTP and Kermit, including (to name a few):
  52.  
  53.  . Handling of file attribute (date-time, size, permissions, etc)
  54.  . Automatic per-file text/binary mode switching
  55.  . Recursive directory-tree traversal
  56.  . Character-set conversion capabilities
  57.  . Automation features built into the client/server protocol
  58.  . Flexible filename collisions options, including update
  59.  
  60. As you might know, we have added FTP protocol to the new Kermit releases,
  61. in a way that brings many of these features to FTP for the first time,
  62. despite the fact that the FTP protocol is not designed to support them:
  63.  
  64.   http://www.columbia.edu/kermit/ftpclient.html
  65.  
  66. - Frank